home *** CD-ROM | disk | FTP | other *** search
- <?php
-
- require_once('params.class.php');
-
- class TmcXslReplace
- {
- private $Fxml = '';
-
- function __construct($Axml)
- {
- $this->Fxml = $Axml;
- }
-
- function processReplace()
- {
- $this->Fxml = str_replace('href="index"', 'href="index'.$_SESSION["mc_params"]->getPhpExtension().'"', $this->Fxml);
- $this->Fxml = str_replace('action="films"', 'action="films'.$_SESSION["mc_params"]->getPhpExtension().'"', $this->Fxml);
- $this->Fxml = str_replace('href="films"', 'href="films'.$_SESSION["mc_params"]->getPhpExtension().'"', $this->Fxml);
- $this->Fxml = str_replace('film?', 'film'.$_SESSION["mc_params"]->getPhpExtension().'?', $this->Fxml);
- $this->Fxml = str_replace('getimg?idx=', 'getimg'.$_SESSION["mc_params"]->getPhpExtension().'?idx=', $this->Fxml);
- return $this->Fxml;
- }
- }
-
- ?>